home *** CD-ROM | disk | FTP | other *** search
/ PCMania 40 / PCMania CD40_1.iso / abcsuite / abc.z / OLE_VDOC.H < prev    next >
C/C++ Source or Header  |  1995-09-15  |  1KB  |  45 lines

  1. // ole_vdoc.h : interface of the COle_vbxDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class COle_vbxDoc : public CDocument
  6. {
  7. protected: // create from serialization only
  8.     COle_vbxDoc();
  9.     DECLARE_DYNCREATE(COle_vbxDoc)
  10.  
  11. // Attributes
  12. public:
  13. // Operations
  14. public:
  15.  
  16. // Implementation
  17. public:
  18.     virtual ~COle_vbxDoc();
  19.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  20. #ifdef _DEBUG
  21.     virtual void AssertValid() const;
  22.     virtual void Dump(CDumpContext& dc) const;
  23. #endif
  24.  
  25. protected:
  26.     virtual BOOL OnNewDocument();
  27.  
  28. // Generated message map functions
  29. protected:
  30.     //{{AFX_MSG(COle_vbxDoc)
  31.         // NOTE - the ClassWizard will add and remove member functions here.
  32.         //    DO NOT EDIT what you see in these blocks of generated code !
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35.  
  36.     // Generated OLE dispatch map functions
  37.     //{{AFX_DISPATCH(COle_vbxDoc)
  38.         // NOTE - the ClassWizard will add and remove member functions here.
  39.         //    DO NOT EDIT what you see in these blocks of generated code !
  40.     //}}AFX_DISPATCH
  41.     DECLARE_DISPATCH_MAP()
  42. };
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45.